:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.5;
  color: #333;
}

/* Custom utility classes */
.font-geist-mono {
  font-family: 'SF Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Section styling */
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.section-subtitle {
  font-size: 0.875rem;
  color: #718096;
  margin: 0;
}

.icon-container {
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.5rem;
}

/* Animation effects */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

section {
  animation: fadeIn 0.5s ease-out;
}

.hero {
  animation: slideUp 0.5s ease-out;
}

/* Print styles */
@media print {
  @page {
    size: A4;
    margin: 1.5cm;
  }
  
  body {
    background-color: white !important;
    font-size: 11pt;
  }
  
  main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  
  section {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 1.5rem;
  }
  
  .section-header {
    margin-bottom: 1rem;
  }
  
  h2, h3 {
    break-after: avoid;
    page-break-after: avoid;
  }
  
  img {
    max-width: 100%;
  }
}
